home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / CSCdu35577.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  77 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Script License for details
  5. #
  6. # Thanks to Nicolas FISCHBACH (nico@securite.org) for his help
  7. #
  8. # Ref:  http://www.cisco.com/warp/public/707/vpn3k-multiple-vuln-pub.shtml
  9.  
  10.  
  11. if(description)
  12. {
  13.  script_id(11289);
  14.  script_bugtraq_id(5621, 5623, 5624);
  15.  script_version("$Revision: 1.4 $");
  16.  script_cve_id("CAN-2002-1094");
  17.  
  18.  name["english"] = "CSCdu35577";
  19.  
  20.  script_name(english:name["english"]);
  21.  
  22.  desc["english"] = "
  23. The remote VPN concentrator gives out too much
  24. information in application layer banners
  25.  
  26. This vulnerability is documented as Cisco bug ID CSCdu35577.
  27.  
  28. Solution : 
  29. http://www.cisco.com/warp/public/707/vpn3k-multiple-vuln-pub.shtml
  30. Risk factor : Low
  31.  
  32. *** As Nessus solely relied on the banner of the remote host
  33. *** this might be a false positive
  34. ";
  35.  script_description(english:desc["english"]);
  36.  
  37.  summary["english"] = "Uses SNMP to determine if a flaw is present";
  38.  script_summary(english:summary["english"]);
  39.  
  40.  script_category(ACT_GATHER_INFO);
  41.  
  42.  script_copyright(english:"This script is (C) 2003 Renaud Deraison");
  43.  
  44.  script_family(english:"CISCO");
  45.  
  46.  script_dependencie("snmp_sysDesc.nasl");
  47.  script_require_keys("SNMP/community",
  48.               "SNMP/sysDesc",
  49.               "CISCO/model");
  50.  exit(0);
  51. }
  52.  
  53.  
  54. # The code starts here
  55. ok=0;
  56.  
  57. os = get_kb_item("SNMP/sysDesc"); if(!os)exit(0);
  58.  
  59.  
  60.  
  61.  
  62. # Is this a VPN3k concentrator ?
  63. if(!egrep(pattern:".*VPN 3000 Concentrator.*", string:os))exit(0);
  64.  
  65. # < 3.5.4
  66. if(egrep(pattern:".*Version 3\.5\.Rel.*", string:os))ok = 1;
  67. if(egrep(pattern:".*Version 3\.5\.[0-3].*", string:os))ok = 1;
  68.  
  69. # 3.0.x and 3.1.x
  70. if(egrep(pattern:".*Version 3\.[0-1]\..*", string:os))ok = 1;
  71.  
  72. # 2.x.x
  73. if(egrep(pattern:".*Version 2\..*", string:os))ok = 1;
  74.  
  75.  
  76. if(ok)security_warning(port:161, proto:"udp");
  77.